←Select platform

ColorizeGrayCommand Constructor(ColorizeGrayCommandData[])

Summary
Initializes a new ColorizeGrayCommand class object with explicit parameters.
Syntax
C#
Objective-C
C++/CLI
Java
Python
- (instancetype)initWithGrayColors:(NSArray<LTColorizeGrayCommandData *> *)grayColors NS_DESIGNATED_INITIALIZER; 
public ColorizeGrayCommand( 
   ColorizeGrayCommandData[] grayColors 
); 
public: 
ColorizeGrayCommand(  
   array<ColorizeGrayCommandData^>^ grayColors 
) 
__init__(self,grayColors) # Overloaded constructor 

Parameters

grayColors
Array of ColorizeGrayCommandData class objects that contain the colors used to initialize the class object.

Example

This example loads a 16-bit grayscale image and then colors it.

C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Core; 
 
public void ColorizeGrayConstructorExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, @"ImageProcessingDemo\Beauty16.jpg")); 
 
   // Prepare the command 
   ColorizeGrayCommandData[] grayColors = new ColorizeGrayCommandData[6]; 
 
   RasterColor[] colors = new RasterColor[6]; 
   colors[0] = new RasterColor(255, 0, 0); 
   colors[1] = new RasterColor(0, 255, 0); 
   colors[2] = new RasterColor(0, 0, 255); 
   colors[3] = new RasterColor(0, 255, 255); 
   colors[4] = new RasterColor(255, 0, 255); 
   colors[5] = new RasterColor(255, 255, 0); 
 
   for (int i = 0; i < 6; i++) 
      grayColors[i] = new ColorizeGrayCommandData(colors[i], i * 10000 + 9999); 
 
   ColorizeGrayCommand command = new ColorizeGrayCommand(grayColors); 
 
   //Call the command 
   command.Run(image); 
 
   // Save the resulted image 
   codecs.Save(command.DestinationImage, Path.Combine(LEAD_VARS.ImagesDir, "ColorizeGrayResult.Bmp"), RasterImageFormat.Bmp, 24); 
 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images"; 
} 
Requirements

Target Platforms

Help Version 22.0.2023.11.1
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.ImageProcessing.Core Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.